home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / misc.swg / 0120_String Function Returns.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-03-26  |  329 b   |  9 lines

  1. {
  2. > Does anyone know how TP returns a string from a function?  Does it
  3. > return a  pointer to the string in AX:DX?  I'm writing a data
  4.  
  5. BP (and probably TP) return a string at the memory location pointed
  6. to by @Result .  @Result is a pointer type, and it's location can
  7. be loaded into registers like    LES DI,@Result
  8. }
  9.